home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2000-08-07 | 1.2 KB | 48 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="1"
- "COUNT"="1"
- "UIPATH"="Internet\Instant Messaging\ICQ"
- "NAME"="URL Settings"
- "LANGUAGE"="VBScript"
- "VERSION"="1.04"
- "TEXT 1"="Default Host"
- "DESCRIPTION 1"="You can use this plug-in to change the options for ICQ (TM)."
- "DESCRIPTION 2"="It allows you to use a different server if you wish, or have been experiencing problems with the default server."
- "DESCRIPTION 3"="The default value is "icq.mirabilis.com" for Default Host."
- "DESCRIPTION 4"="ICQ may be obtained at http://www.icq.com/."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
- "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
-
-
- sPath="HKCU\Software\Mirabilis\ICQ\DefaultPrefs\"
- sV1="Default Server Host"
- Sub Plugin_Initialize
- if RegPathExists(sPath) then
- s=RegReadValue(sPath & sV1)
- SetUIElement 1,s
- else
- Disable
- end if
- End Sub
-
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- s=GetUIElement(1)
- Call RegWriteValue(sPath & sV1,s,1)
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-